Skip to main content

Copy

Copies the range to the specified range or to the clipboard.

Syntax

expression.Copy(destination);

expression - A variable that represents a ApiRange class.

Parameters

NameRequired/OptionalData typeDefaultDescription
destinationOptionalApiRangeSpecifies the new range to which the specified range will be copied. If this argument is omitted, the range will be copied to the clipboard.

Returns

This method doesn't return any data.

Example

This example copies a range to the specified range.

var oWorksheet = Api.GetActiveSheet();
var oRange = oWorksheet.GetRange("A1");
oRange.SetValue("This is a sample text which is copied to the range A3.");
oRange.Copy(oWorksheet.GetRange("A3"));